home *** CD-ROM | disk | FTP | other *** search
- /*
- File: KoreanAnalysis.h
-
- Contains: class KoreanAnalysis
-
- Version: 1.0
-
- Copyright: © 1994 - 1997 by Apple Computer, Inc., all rights reserved.
-
- File Ownership:
-
- DRI: Farzin Maghoul
-
- Other Contact: Kevin Tiene
-
- Technology: xxx put the technology group name here xxx
-
- Writers:
-
- (dgc) David Cásseres
-
- Change History (most recent first):
-
- <3> 1/22/97 dgc Fix up this header
- <2> 1/16/97 dgc Correct type id.
- */
-
- #pragma once
- #ifndef TwoByteAnalysis_h
- #define TwoByteAnalysis_h
-
- #pragma import on
-
- #include "IAAnalysis.h"
-
- #pragma IA_BEGIN_EXPORTS
-
- const uint32 KoreanAnalysisType = 'Kor1';
-
- class KoreanAnalysis : public IAAnalysis {
- public:
- KoreanAnalysis() : IAAnalysis(KoreanAnalysisType) {}
-
- IATokenStream* MakeTokenStream(IADocText* text);
- IATerm* GetProtoTerm();
- };
-
- #pragma IA_END_EXPORTS
-
- #pragma import reset
-
- #endif
-